Skip to content

Instantly share code, notes, and snippets.

@MarcoGriep88
MarcoGriep88 / Silent Install Parameter.md
Created May 13, 2021 11:24
Silent Install Parameter
Anwendung Parameter Uninstall
7-zip 7z1900-x64.exe /S C:\Program Files\7-Zip\Uninstall.exe /S
Advanced Auth Enterprise msiexec.exe /i naaf-winclient-x64-release-6.2-101.msi /qn /norestart msiexec.exe /x {937389C1-EB21-4789-BF4E-19A46ADE2792}
Advanced Auth Enterprise Device Service msiexec.exe /i naaf-deviceservice-x86-release-6.2-83.msi /qn /norestart msiexec.exe /x {9EA9B206-923B-4E53-9BF4-6D0ECD2AF77D}
Android Studio 18.1 android-studio-ide-181.5056338-windows.exe /S /AllUsers "C:\Program Files\Android\Android Studio\uninstall.exe" /S
Avaya IP Office msiexec.exe /i IP Office Admin Suite.msi /qn /norestart msiexec.exe /x {4C0A92F9-5075-4BF0-9B13-03B26857DB15}
Bing Desktop BingDesktopSetup.exe /Q msiexec.exe /x {E501B2B23A30D9C42AA1D15E97FD0761}
Cisco WebEx Internet Explorer Plugin regsvr32.exe /S ".\Extern$\ieatgpc.dll"
@everyplace
everyplace / Disable Xcode's permissions checks.md
Last active March 27, 2026 07:42
Configure Xcode 26.3 with agent support to use the iOS-simulator mcp server

Disable Xcode's agent permissions checks

Note

This addresses the concern of "how to get Xcode's agent support to reach outside of itself without asking for permission" but does not address the reverse of "how to get a terminal agent to talk to Xcode without prompting."

This is basically the equivalent of running something like claude --dangerously-skip-permissions, so... probably this is a bad idea.

defaults write com.apple.dt.Xcode IDEChatAgenticChatSkipPermissions -bool YES

When you set this flag, after you initiate a session with Claude Agent in Xcode, if you go to terminal and run ps -ax | grep danger you will see the claude agent process has --dangerously-skip-permissions passed directly to it from Xcode.

"""
The most atomic way to train and run inference for a GPT in pure, dependency-free Python.
This file is the complete algorithm.
Everything else is just efficiency.
@karpathy
"""
import os # os.path.exists
import math # math.log, math.exp
@adamawolf
adamawolf / Apple_mobile_device_types.txt
Last active March 27, 2026 07:40
List of Apple's mobile device codes types a.k.a. machine ids (e.g. `iPhone1,1`, `Watch1,1`, etc.) and their matching product names
i386 : iPhone Simulator
x86_64 : iPhone Simulator
arm64 : iPhone Simulator
iPhone1,1 : iPhone
iPhone1,2 : iPhone 3G
iPhone2,1 : iPhone 3GS
iPhone3,1 : iPhone 4
iPhone3,2 : iPhone 4 GSM Rev A
iPhone3,3 : iPhone 4 CDMA
iPhone4,1 : iPhone 4S
@abdulhalim-cu
abdulhalim-cu / Odoo-10-Install-Process
Created October 15, 2017 09:36
Install Odoo 10 on Ubuntu 16.04 LTS
Setp-1: Update & Upgrade Source List
update apt source list
sudo apt-get upgrade
Step-2: Install python dependencies for Odoo
sudo apt-get install python-dateutil python-docutils python-feedparser python-jinja2 python-ldap python-libxslt1 python-lxml python-mako python-mock python-openid python-psycopg2 python-psutil python-pybabel python-pychart python-pydot python-pyparsing python-reportlab python-simplejson python-tz python-unittest2 python-vatnumber python-vobject python-webdav python-werkzeug python-xlwt python-yaml python-zsi poppler-utils python-pip python-pypdf python-passlib python-decorator gcc python-dev mc bzr python-setuptools python-markupsafe python-reportlab-accel python-zsi python-yaml python-argparse python-openssl python-egenix-mxdatetime python-usb python-serial lptools make python-pydot python-psutil python-paramiko poppler-utils python-pdftools antiword python-requests python-xlsxwriter python-suds python-psycogreen python-ofxparse python-gevent
Step-3: Odoo Web dependencies
@sunmeat
sunmeat / main.cpp
Last active March 27, 2026 07:35
client server UDP C++ example
CLIENT SIDE:
#include <iostream>
#include <winsock2.h>
using namespace std;
#pragma comment(lib,"ws2_32.lib") // підключення бібліотеки winsock
#pragma warning(disable:4996)
#define SERVER "127.0.0.1" // ip-адреса сервера (локальний хост)
@shoark7
shoark7 / algorithm-sites.md
Last active March 27, 2026 07:26
개인적으로 사용했던 알고리즘 사이트들을 추천드립니다.

알고리즘이라고 많이 들어보셨을 겁니다. 알고리즘은 교과서식으로 정의해보면 '문제를 해결하는 일련의 절차'라고 할 수 있는데요. 컴퓨터로 어떤 문제를 해결해야 할 때, 코딩으로 어떻게 해결할지에 대한 구체적인 방법을 이야기합니다.

예를 들어, 숫자 배열을 정렬하는 문제가 있다고 합시다. 인간이 배열을 대충 보고 정렬하기는 쉽지만 원소의 개수가 수백만개에 달하는 배열에서 컴퓨터에게 일을 시켜서 컴퓨터가 정렬하게 하는 것은 쉽지 않습니다. 실제로 정렬은 알고리즘에서 매우 유명하고 기초적인 분야로 정렬을 하는 방법, 즉 알고리즘이 지금까지 알려진 것만 해도 수십가지가 됩니다.

알고리즘을 공부하는 것은 꽤 도움이 되는데요. 일단 코딩을 시작하시는 분들 입장에서는 코딩을 하게 되서 코딩과 문법에 익숙해지는 장점이 있고, 또 개발자적 사고를 하는 데 알고리즘 문제를 푸는 것이 도움이 됩니다. 어떤 개발 회사들은 알고리즘 능력을 테스트하기 때문에 취업을 목표로 공부하신다면 손해는 보지 않습니다.

저는 알고리즘을 좋아해서 조금씩 풀어왔는데요. 알고리즘을 풀 수 있도록 문제를 내주는 사이트들이 정말 많습니다. 오늘은 그중에서 몇 가지만 소개해드리겠습니다. 사이트는 정말 많은데요, 그중에서 제가 최소 몇 번이라도 써본 사이트들만 소개하겠습니다. 더 좋은 사이트들이 있으면 소개해주시면 추가할 수 있을 것 같습니다.


@idhantgulati
idhantgulati / ssh.py
Last active March 27, 2026 07:25
to ssh into modal (https://modal.com/)
import modal, time, tempfile, os, sys
from pathlib import Path
from datetime import datetime
from tqdm import tqdm
# Default SSH public key paths (client side)
DEFAULT_PUBKEY = str(Path("~/.ssh/id_ed25519.pub").expanduser())
DEFAULT_ALTKEY = str(Path("~/Documents/id_ed25519.pub").expanduser())
_req_file = Path("~/modal-py-req.txt").expanduser()
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8" />
<script src="Scripts/jquery-1.9.1.min.js"></script>
<link href="Content/bootstrap.min.css" rel="stylesheet" />
<script src="Scripts/isRockFx.js"></script>
<script>
$(function () {